home | section main page


Fourier Transform

Table of Contents

1. Introduction

The Fourier Transform is a generalization of the Fourier Series. It has applications in solving differential equations and has applications in many different fields, including quantum mechanics, radio, planetary motion, and even the study of the heat equation. In this article we will study the heat equation, the Fourier Series, and the Fourier transform.

1.1. The Heat Equation

The heat equation is the study of how heat travels in a conductor with the unknown function in question being \(f(\vec{r}, t)\), giving the temperature at position \(\vec{r}\) at time \(t\). Now we want to describe the time rate of change of this function, so we use a :

\begin{align} \label{Heat equation 1} \partial_{t}f = ?f \end{align}

the left hand side should intuitively be some operator on \(f\) dealing with how heat changes in space. A single spacial derivative operator \(\partial_{x}f\) might give you the rate of change of the temperature over space. The continuity equation for heat might look like this:

\begin{align} \label{} \partial_{t}f + \vec{\nabla} \cdot \vec{j} = 0 \end{align}

where \(\vec{j}\) is the heat current. It makes sense that the heat equation ought to satisfy some continuity equation, because heat can't just teleport without leaving some enclosed area (in order for this theory to be physical, it must respect local conservation of energy). The heat current vector field and a scalar heat field might have a similar relation to that of the potential-vector field relation in fields:

\begin{align} \label{} \vec{j} = -\vec{\nabla}u \end{align}

substituting:

\begin{align} \label{} \partial_{t}f = \nabla^{2}u \end{align}

and heat \(u\) is proportional to temperature \(f\), so we have:

\begin{align} \label{} \partial_{t}f = \alpha\nabla^{2}f \end{align}

The result is a PDE that we can solve analytically in one dimension.

1.1.1. Solving the Heat Equation in One Dimension

In one dimension, the heat equation looks like this:

\begin{align} \label{} \partial_{t}f = \alpha\partial_{xx}f \end{align}

we assume this is a separable differential equation i.e. the solution can be written:

\begin{align} \label{} f(x, t) = X(x)T(t) \end{align}

Plugging this in:

\begin{align} \label{} X(x)\frac{dT}{dt} = \alpha T(t)\frac{d^{2}X}{dx^{2}} \\ \frac{1}{T}\frac{dT}{dt} = \alpha \frac{1}{X}\frac{d^{2}X}{dx^{2}} \end{align}

we see that each side doesn't depend on any variables from the other side, so we can separate this into two ODEs, because each side looks like a constant to the other side:

\begin{align} \label{} \frac{1}{T}\frac{dT}{dt} = \alpha \frac{1}{X}\frac{d^{2}X}{dx^{2}} = -k \end{align}

Now we solve for \(T(t)\), by reducing this problem to being a homogeneous differential equation:

\begin{align} \label{} \frac{dT}{dt} + kT = 0 \\ \lambda + k = 0 \\ \lambda = k \\ T(t) = Ae^{-kt} \end{align}

Solving for \(X(x)\) is also a homogeneous case:

\begin{align} \label{} \frac{d^{2}X}{dx^{2}} + \frac{k}{\alpha}X = 0 \\ \lambda^{2} + \frac{k}{\alpha} = 0 \\ \lambda = \pm \sqrt{-\frac{k}{\alpha}} \\ X(x) = Be^{x\sqrt{-\frac{k}{\alpha}}} + Ce^{-x\sqrt{-\frac{k}{\alpha}}} \end{align}

re-using \(\lambda\) to mean something else and casting \(\sqrt{\frac{k}{\alpha}} = \lambda\):

\begin{align} \label{} X(x) = Be^{i\lambda x} + Ce^{-i\lambda x} \\ T(t) = Ae^{-\lambda^{2}\alpha t} \\ f(x, t) = ABe^{i\lambda x - \lambda^{2}\alpha t} + ACe^{-i\lambda x - \lambda^{2}\alpha t} \\ f(x, t) = A_{1}e^{i\lambda x - \lambda^{2}\alpha t} + A_{2}e^{-i\lambda x - \lambda^{2}\alpha t} \end{align}

we know that by the superposition principle:

\begin{align} \label{} f(x, t) = \sum_{i=0}^{N}f_{i}(x, t) \end{align}

Now, in order to proceed, we need to formulate this as an initial value problem with boundary conditions. A classic example would be a wire of dimension 1 and length \(L\). Thus we set a couple of boundary conditions:

2. The Fourier Transform

Taking the Fourier series and letting \(T \rightarrow \infty\):

\begin{align} \label{} f(x) = \sum_{n=-\infty}^{\infty}c_{n}e^{\frac{inx}{T}} \\ Tc_{n} = \lim_{T\rightarrow\infty} \int_{-T}^{T}f(x)e^{\frac{inx}{T}}dx \\ F(\omega) := Tc_{n} \\ \omega := \frac{n}{T} \\ F(\omega) = \int_{-\infty}^{\infty}f(x)e^{i\omega x}dx \end{align}

\(F(\omega)\) is the Fourier Transform of \(f(x)\). Putting different functions as arguments gives you a Fourier Transform table, and the inverse transform is same as the forward transform, scaled by a constant. This makes Fourier Transforms useful tools for solving differential equations.

Copyright © 2024 Preston Pan